home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / SASC_6.0_Disk_3.adf / Compiler_headers / Include / stdarg.h < prev    next >
C/C++ Source or Header  |  1992-07-30  |  321b  |  18 lines

  1. /* Copyright (c) 1992 SAS Institute, Inc., Cary, NC USA */
  2. /* All Rights Reserved */
  3.  
  4.  
  5. #ifndef _STDARG_H
  6. #define _STDARG_H 1
  7.  
  8. #ifndef _VA_LIST
  9. #define _VA_LIST 1
  10. typedef char *va_list;
  11. #endif
  12.  
  13. #define va_start(a,b) a=(char *)(&b+1)
  14. #define va_arg(a,b)  (*((b *) ((a += sizeof(b)) - sizeof(b))))
  15. #define va_end(a)
  16.  
  17. #endif
  18.